home *** CD-ROM | disk | FTP | other *** search
- /*
- File: 2020RecipientReport.h
-
- Copyright: © 1991-1994 by Apple Computer, Inc.
- All rights reserved.
-
- Part of the AOCE Sample SMSAM Package. Consult the license
- which came with this software for your specific legal rights.
-
- */
-
-
-
- #ifndef __2020RECIPIENTREPORT__
- #define __2020RECIPIENTREPORT__
-
- #ifndef __BLJSTANDARDINCLUDES__
- #include "BLJStandardIncludes.h"
- #endif
-
- #ifndef __HANDLEOBJECT__
- #include "HandleObject.h"
- #endif
-
- /***********************************|****************************************/
-
- class T2020RecipientReport : public THandleObject
- {
- public:
- T2020RecipientReport(long queueID, long sequenceNumber);
- virtual ~T2020RecipientReport();
-
- virtual short GetRecipientCount() const;
- virtual Boolean GetRecipientStatus(short index, short& recipientIndex, OSErr& recipientStatus) const;
- virtual ostream& operator >> ( ostream& ) const;
-
- protected:
- long fQueueID;
- long fSequenceNumber;
- long fRecipientReportCount;
- Handle fRecipientReport;
- };
-
- /***********************************|****************************************/
-
- #endif // __2020RECIPIENTREPORT__
-